home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / upc12bs1.zip / UUCICO / suspend.h < prev    next >
C/C++ Source or Header  |  1993-09-29  |  2KB  |  52 lines

  1. #ifndef SUSPEND_H
  2. #define SUSPEND_H
  3.  
  4. /*--------------------------------------------------------------------*/
  5. /*    s u s p e n d . h                                               */
  6. /*                                                                    */
  7. /*    suspend/resume uupoll/uucico daemon                             */
  8. /*                                                                    */
  9. /*    Author: Kai Uwe Rommel                                          */
  10. /*--------------------------------------------------------------------*/
  11.  
  12. /*--------------------------------------------------------------------*/
  13. /*       Copyright (c) 1993 by Kai Uwe Rommel                         */
  14. /*--------------------------------------------------------------------*/
  15.  
  16. /*--------------------------------------------------------------------*/
  17. /*       Changes Copyright (c) 1989-1993 by Kendra Electronic         */
  18. /*       Wonderworks.                                                 */
  19. /*                                                                    */
  20. /*       All rights reserved except those explicitly granted by       */
  21. /*       the UUPC/extended license agreement.                         */
  22. /*--------------------------------------------------------------------*/
  23.  
  24. /*--------------------------------------------------------------------*/
  25. /*                          RCS Information                           */
  26. /*--------------------------------------------------------------------*/
  27.  
  28. /*
  29.  *    $Id: suspend.h 1.2 1993/09/29 04:56:11 ahd Exp $
  30.  *
  31.  *    Revision history:
  32.  *    $Log: suspend.h $
  33.  * Revision 1.2  1993/09/29  04:56:11  ahd
  34.  * Suspend port by port name, not modem file name
  35.  *
  36.  */
  37.  
  38. #ifndef NO_SUSPEND_FUNCTIONS
  39. extern boolean suspend_processing;
  40.  
  41. void suspend_init(const char *port );
  42.  
  43. int suspend_other(const boolean suspend,
  44.                   const char *port );
  45.  
  46. CONN_STATE suspend_wait(void);
  47. #endif
  48.  
  49. #define SUSPEND_PIPE "\\PIPE\\UUCICO\\ZZ"
  50.  
  51. #endif
  52.